{% extends "base.html" %} {% block title %}Lawyer Dashboard — LegalEase AI{% endblock %} {% block content %}
{{ user.full_name }} · {{ user.email }}
| Client | Appointment | Case | Notes | Status | Action |
|---|---|---|---|---|---|
|
{{ appt.client_name[0].upper() }}
|
{{ appt.appointment_date }}
{{ appt.appointment_time }}
|
{% if appt.case_category and appt.case_category != '—' %} {{ appt.case_category }} {% else %} No case linked {% endif %} | {% if appt.status == 'confirmed' %} Confirmed {% elif appt.status == 'cancelled' %} Cancelled {% else %} Pending {% endif %} |
{% if appt.status == 'pending' %}
|